+2004-11-15 Matthias Clasen <mclasen@redhat.com>
+
+ * gtk/gtktreemodel.c (gtk_tree_path_prev): Return FALSE if
+ depth is 0 (noticed by Tim Janik)
+
2004-11-15 Erwann Chenede - <erwann.chenede@sun.com>
* gtk/gtkfilesel.c: fix unselect in multiple selection (#156805)
+2004-11-15 Matthias Clasen <mclasen@redhat.com>
+
+ * gtk/gtktreemodel.c (gtk_tree_path_prev): Return FALSE if
+ depth is 0 (noticed by Tim Janik)
+
2004-11-15 Erwann Chenede - <erwann.chenede@sun.com>
* gtk/gtkfilesel.c: fix unselect in multiple selection (#156805)
+2004-11-15 Matthias Clasen <mclasen@redhat.com>
+
+ * gtk/gtktreemodel.c (gtk_tree_path_prev): Return FALSE if
+ depth is 0 (noticed by Tim Janik)
+
2004-11-15 Erwann Chenede - <erwann.chenede@sun.com>
* gtk/gtkfilesel.c: fix unselect in multiple selection (#156805)
+2004-11-15 Matthias Clasen <mclasen@redhat.com>
+
+ * gtk/gtktreemodel.c (gtk_tree_path_prev): Return FALSE if
+ depth is 0 (noticed by Tim Janik)
+
2004-11-15 Erwann Chenede - <erwann.chenede@sun.com>
* gtk/gtkfilesel.c: fix unselect in multiple selection (#156805)
+2004-11-15 Matthias Clasen <mclasen@redhat.com>
+
+ * queryloaders.c (query_module): Set vtable->module before
+ calling fill_vtable(), since gdk-pixbuf-io.c does does the
+ same and modules may rely on it. (#158177, Dan Winship)
+
2004-11-12 Matthias Clasen <mclasen@redhat.com>
* gdk-pixbuf-io.c (gdk_pixbuf_io_init): Don't use
#endif
info = g_new0 (GdkPixbufFormat, 1);
vtable = g_new0 (GdkPixbufModule, 1);
-
+
+ vtable->module = module;
+
(*fill_info) (info);
(*fill_vtable) (vtable);
{
g_return_val_if_fail (path != NULL, FALSE);
+ if (path->depth == 0)
+ return FALSE;
+
if (path->indices[path->depth - 1] == 0)
return FALSE;